home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / MacPNG Library 1.02 / pngMacSrc 1.02 / MacPNGlibs / zlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-25  |  27.1 KB  |  617 lines  |  [TEXT/CWIE]

  1. /* zlib.h -- interface of the 'zlib' general purpose compression library
  2.   version 0.93 June 25th, 1995.
  3.  
  4.   Copyright (C) 1995 Jean-loup Gailly and Mark Adler
  5.  
  6.   This software is provided 'as-is', without any express or implied
  7.   warranty.  In no event will the authors be held liable for any damages
  8.   arising from the use of this software.
  9.  
  10.   Permission is granted to anyone to use this software for any purpose,
  11.   including commercial applications, and to alter it and redistribute it
  12.   freely, subject to the following restrictions:
  13.  
  14.   1. The origin of this software must not be misrepresented; you must not
  15.      claim that you wrote the original software. If you use this software
  16.      in a product, an acknowledgment in the product documentation would be
  17.      appreciated but is not required.
  18.   2. Altered source versions must be plainly marked as such, and must not be
  19.      misrepresented as being the original software.
  20.   3. This notice may not be removed or altered from any source distribution.
  21.  
  22.   Jean-loup Gailly        Mark Adler
  23.   gzip@prep.ai.mit.edu    madler@alumni.caltech.edu
  24.  */
  25.  
  26. #ifndef _ZLIB_H
  27. #define _ZLIB_H
  28.  
  29. #include "zconf.h"
  30.  
  31. #define ZLIB_VERSION "0.93"
  32.  
  33. /* 
  34.      The 'zlib' compression library provides in-memory compression and
  35.   decompression functions, including integrity checks of the uncompressed
  36.   data.  This version of the library supports only one compression method
  37.   (deflation) but other algorithms may be added later and will have the same
  38.   stream interface.
  39.  
  40.      For compression the application must provide the output buffer and
  41.   may optionally provide the input buffer for optimization. For decompression,
  42.   the application must provide the input buffer and may optionally provide
  43.   the output buffer for optimization.
  44.  
  45.      Compression can be done in a single step if the buffers are large
  46.   enough (for example if an input file is mmap'ed), or can be done by
  47.   repeated calls of the compression function.  In the latter case, the
  48.   application must provide more input and/or consume the output
  49.   (providing more output space) before each call.
  50. */
  51.  
  52. typedef voidp (*alloc_func) __P((voidp opaque, uInt items, uInt size));
  53. typedef void  (*free_func)  __P((voidp opaque, voidp address));
  54.  
  55. struct internal_state;
  56.  
  57. typedef struct z_stream_s {
  58.     Byte     *next_in;  /* next input byte */
  59.     uInt     avail_in;  /* number of bytes available at next_in */
  60.     uLong    total_in;  /* total nb of input bytes read so far */
  61.  
  62.     Byte     *next_out; /* next output byte should be put there */
  63.     uInt     avail_out; /* remaining free space at next_out */
  64.     uLong    total_out; /* total nb of bytes output so far */
  65.  
  66.     char     *msg;      /* last error message, NULL if no error */
  67.     struct internal_state *state; /* not visible by applications */
  68.  
  69.     alloc_func zalloc;  /* used to allocate the internal state */
  70.     free_func  zfree;   /* used to free the internal state */
  71.     voidp      opaque;  /* private data object passed to zalloc and zfree */
  72.  
  73.     Byte     data_type; /* best guess about the data type: ascii or binary */
  74.  
  75. } z_stream;
  76.  
  77. /*
  78.    The application must update next_in and avail_in when avail_in has
  79.    dropped to zero. It must update next_out and avail_out when avail_out
  80.    has dropped to zero. The application must initialize zalloc, zfree and
  81.    opaque before calling the init function. All other fields are set by the
  82.    compression library and must not be updated by the application.
  83.  
  84.    The opaque value provided by the application will be passed as the first
  85.    parameter for calls of zalloc and zfree. This can be useful for custom
  86.    memory management. The compression library attaches no meaning to the
  87.    opaque value.
  88.  
  89.    zalloc must return Z_NULL if there is not enough memory for the object.
  90.    On 16-bit systems, the functions zalloc and zfree must be able to allocate
  91.    exactly 65536 bytes, but will not be required to allocate more than this
  92.    if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS,
  93.    pointers returned by zalloc for objects of exactly 65536 bytes *must*
  94.    have their offset normalized to zero. The default allocation function
  95.    provided by this library ensures this (see zutil.c). To reduce memory
  96.    requirements and avoid any allocation of 64K objects, at the expense of
  97.    compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h).
  98.  
  99.    The fields total_in and total_out can be used for statistics or
  100.    progress reports. After compression, total_in holds the total size of
  101.    the uncompressed data and may be saved for use in the decompressor
  102.    (particularly if the decompressor wants to decompress everything in
  103.    a single step).
  104. */
  105.  
  106.                         /* constants */
  107.  
  108. #define Z_NO_FLUSH      0
  109. #define Z_PARTIAL_FLUSH 1
  110. #define Z_FULL_FLUSH    2
  111. #define Z_SYNC_FLUSH    3 /* experimental: partial_flush + byte align */
  112. #define Z_FINISH        4
  113. /* See deflate() below for the usage of these constants */
  114.  
  115. #define Z_OK            0
  116. #define Z_STREAM_END    1
  117. #define Z_ERRNO        (-1)
  118. #define Z_STREAM_ERROR (-2)
  119. #define Z_DATA_ERROR   (-3)
  120. #define Z_MEM_ERROR    (-4)
  121. #define Z_BUF_ERROR    (-5)
  122. /* error codes for the compression/decompression functions */
  123.  
  124. #define Z_BEST_SPEED             1
  125. #define Z_BEST_COMPRESSION       9
  126. #define Z_DEFAULT_COMPRESSION  (-1)
  127. /* compression levels */
  128.  
  129. #define Z_FILTERED            1
  130. #define Z_HUFFMAN_ONLY        2
  131. #define Z_DEFAULT_STRATEGY    0
  132.  
  133. #define Z_BINARY   0
  134. #define Z_ASCII    1
  135. #define Z_UNKNOWN  2
  136. /* Used to set the data_type field */
  137.  
  138. #define Z_NULL  0  /* for initializing zalloc, zfree, opaque */
  139.  
  140. extern char *zlib_version;
  141. /* The application can compare zlib_version and ZLIB_VERSION for consistency.
  142.    If the first character differs, the library code actually used is
  143.    not compatible with the zlib.h header file used by the application.
  144.  */
  145.  
  146.                         /* basic functions */
  147.  
  148. extern int deflateInit __P((z_stream *strm, int level));
  149. /* 
  150.      Initializes the internal stream state for compression. The fields
  151.    zalloc, zfree and opaque must be initialized before by the caller.
  152.    If zalloc and zfree are set to Z_NULL, deflateInit updates them to
  153.    use default allocation functions.
  154.  
  155.      The compression level must be Z_DEFAULT_COMPRESSION, or between 1 and 9:
  156.    1 gives best speed, 9 gives best compression. Z_DEFAULT_COMPRESSION requests
  157.    a default compromise between speed and compression (currently equivalent
  158.    to level 6).
  159.  
  160.      deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
  161.    enough memory, Z_STREAM_ERROR if level is not a valid compression level.
  162.    msg is set to null if there is no error message.  deflateInit does not
  163.    perform any compression: this will be done by deflate().
  164. */
  165.  
  166.  
  167. extern int deflate __P((z_stream *strm, int flush));
  168. /*
  169.   Performs one or both of the following actions:
  170.  
  171.   - Compress more input starting at next_in and update next_in and avail_in
  172.     accordingly. If not all input can be processed (because there is not
  173.     enough room in the output buffer), next_in and avail_in are updated and
  174.     processing will resume at this point for the next call of deflate().
  175.  
  176.   - Provide more output starting at next_out and update next_out and avail_out
  177.     accordingly. This action is forced if the parameter flush is non zero.
  178.     Forcing flush frequently degrades the compression ratio, so this parameter
  179.     should be set only when necessary (in interactive applications).
  180.     Some output may be provided even if flush is not set.
  181.  
  182.   Before the call of deflate(), the application should ensure that at least
  183.   one of the actions is possible, by providing more input and/or consuming
  184.   more output, and updating avail_in or avail_out accordingly; avail_out
  185.   should never be zero before the call. The application can consume the
  186.   compressed output when it wants, for example when the output buffer is full
  187.   (avail_out == 0), or after each call of deflate().
  188.  
  189.     If the parameter flush is set to Z_PARTIAL_FLUSH, the current compression
  190.   block is terminated and flushed to the output buffer so that the
  191.   decompressor can get all input data available so far. For method 9, a future
  192.   variant on method 8, the current block will be flushed but not terminated.
  193.   If flush is set to Z_FULL_FLUSH, the compression block is terminated, a
  194.   special marker is output and the compression dictionary is discarded; this
  195.   is useful to allow the decompressor to synchronize if one compressed block
  196.   has been damaged (see inflateSync below).  Flushing degrades compression and
  197.   so should be used only when necessary.  Using Z_FULL_FLUSH too often can
  198.   seriously degrade the compression.
  199.  
  200.     If the parameter flush is set to Z_FINISH, all pending input is processed,
  201.   all pending output is flushed and deflate returns with Z_STREAM_END if there
  202.   was enough output space; if deflate returns with Z_OK, this function must be
  203.   called again with Z_FINISH and more output space (updated avail_out) but no
  204.   more input data, until it returns with Z_STREAM_END or an error. After
  205.   deflate has returned Z_STREAM_END, the only possible operations on the
  206.   stream are deflateReset or deflateEnd.
  207.   
  208.     Z_FINISH can be used immediately after deflateInit if all the compression
  209.   is to be done in a single step. In this case, avail_out must be at least
  210.   0.1% larger than avail_in plus 12 bytes.  If deflate does not return
  211.   Z_STREAM_END, then it must be called again as described above.
  212.  
  213.     deflate() may update data_type if it can make a good guess about
  214.   the input data type (Z_ASCII or Z_BINARY). In doubt, the data is considered
  215.   binary. This field is only for information purposes and does not affect
  216.   the compression algorithm in any manner.
  217.  
  218.     deflate() returns Z_OK if some progress has been made (more input
  219.   processed or more output produced), Z_STREAM_END if all input has been
  220.   consumed and all output has been produced (only when flush is set to
  221.   Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
  222.   if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible.
  223. */
  224.  
  225.  
  226. extern int deflateEnd __P((z_stream *strm));
  227. /*
  228.      All dynamically allocated data structures for this stream are freed.
  229.    This function discards any unprocessed input and does not flush any
  230.    pending output.
  231.  
  232.      deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the
  233.    stream state was inconsistent. In the error case, msg may be set
  234.    but then points to a static string (which must not be deallocated).
  235. */
  236.  
  237.  
  238. extern int inflateInit __P((z_stream *strm));
  239. /* 
  240.      Initializes the internal stream state for decompression. The fields
  241.    zalloc and zfree must be initialized before by the caller.  If zalloc and
  242.    zfree are set to Z_NULL, deflateInit updates them to use default allocation
  243.    functions.
  244.  
  245.      inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
  246.    enough memory.  msg is set to null if there is no error message.
  247.    inflateInit does not perform any decompression: this will be done by
  248.    inflate().
  249. */
  250.  
  251.  
  252. extern int inflate __P((z_stream *strm, int flush));
  253. /*
  254.   Performs one or both of the following actions:
  255.  
  256.   - Decompress more input starting at next_in and update next_in and avail_in
  257.     accordingly. If not all input can be processed (because there is not
  258.     enough room in the output buffer), next_in is updated and processing
  259.     will resume at this point for the next call of inflate().
  260.  
  261.   - Provide more output starting at next_out and update next_out and avail_out
  262.     accordingly.  inflate() always provides as much output as possible
  263.     (until no more input data or no more space in the output buffer).
  264.  
  265.   Before the call of inflate(), the application should ensure that at least
  266.   one of the actions is possible, by providing more input and/or consuming
  267.   more output, and updating the next_* and avail_* values accordingly.
  268.   The application can consume the uncompressed output when it wants, for
  269.   example when the output buffer is full (avail_out == 0), or after each
  270.   call of inflate().
  271.  
  272.     If the parameter flush is set to Z_PARTIAL_FLUSH, inflate flushes as much
  273.   output as possible to the output buffer. The flushing behavior of inflate is
  274.   not specified for values of the flush parameter other than Z_PARTIAL_FLUSH
  275.   and Z_FINISH, but the current implementation actually flushes as much output
  276.   as possible anyway.
  277.  
  278.     inflate() should normally be called until it returns Z_STREAM_END or an
  279.   error. However if all decompression is to be performed in a single step
  280.   (a single call of inflate), the parameter flush should be set to
  281.   Z_FINISH. In this case all pending input is processed and all pending
  282.   output is flushed; avail_out must be large enough to hold all the
  283.   uncompressed data. (The size of the uncompressed data may have been saved
  284.   by the compressor for this purpose.) The next operation on this stream must
  285.   be inflateEnd to deallocate the decompression state.
  286.  
  287.     inflate() returns Z_OK if some progress has been made (more input
  288.   processed or more output produced), Z_STREAM_END if the end of the
  289.   compressed data has been reached and all uncompressed output has been
  290.   produced, Z_DATA_ERROR if the input data was corrupted, Z_STREAM_ERROR if
  291.   the stream structure was inconsistent (for example if next_in or next_out
  292.   was NULL), Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if no
  293.   progress is possible or if there was not enough room in the output buffer
  294.   when Z_FINISH is used. In the Z_DATA_ERROR case, the application may then
  295.   call inflateSync to look for a good compression block.
  296. */
  297.  
  298.  
  299. extern int inflateEnd __P((z_stream *strm));
  300. /*
  301.      All dynamically allocated data structures for this stream are freed.
  302.    This function discards any unprocessed input and does not flush any
  303.    pending output.
  304.  
  305.      inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state
  306.    was inconsistent. In the error case, msg may be set but then points to a
  307.    static string (which must not be deallocated).
  308. */
  309.  
  310.                         /* advanced functions */
  311.  
  312. /*
  313.     The following functions are needed only in some special applications.
  314. */
  315.  
  316. extern int deflateInit2 __P((z_stream *strm,
  317.                              int  level,
  318.                              int  method,
  319.                              int  windowBits,
  320.                              int  memLevel,
  321.                              int  strategy));
  322. /*   
  323.      This is another version of deflateInit with more compression options. The
  324.    fields next_in, zalloc and zfree must be initialized before by the caller.
  325.  
  326.      The method parameter is the compression method. It must be 8 in this
  327.    version of the library. (Method 9 will allow a 64K history buffer and
  328.    partial block flushes.)
  329.  
  330.      The windowBits parameter is the base two logarithm of the window size
  331.    (the size of the history buffer).  It should be in the range 8..15 for this
  332.    version of the library (the value 16 will be allowed for method 9). Larger
  333.    values of this parameter result in better compression at the expense of
  334.    memory usage. The default value is 15 if deflateInit is used instead.
  335.  
  336.     The memLevel parameter specifies how much memory should be allocated
  337.    for the internal compression state. memLevel=1 uses minimum memory but
  338.    is slow and reduces compression ratio; memLevel=9 uses maximum memory
  339.    for optimal speed. The default value is 8. See zconf.h for total memory
  340.    usage as a function of windowBits and memLevel.
  341.  
  342.      The strategy parameter is used to tune the compression algorithm. Use
  343.    the value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data
  344.    produced by a filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman
  345.    encoding only (no string match).  Filtered data consists mostly of small
  346.    values with a somewhat random distribution. In this case, the
  347.    compression algorithm is tuned to compress them better. The strategy
  348.    parameter only affects the compression ratio but not the correctness of
  349.    the compressed output even if it is not set appropriately.
  350.  
  351.      If next_in is not null, the library will use this buffer to hold also
  352.    some history information; the buffer must either hold the entire input
  353.    data, or have at least 1<<(windowBits+1) bytes and be writable. If next_in
  354.    is null, the library will allocate its own history buffer (and leave next_in
  355.    null). next_out need not be provided here but must be provided by the
  356.    application for the next call of deflate().
  357.  
  358.      If the history buffer is provided by the application, next_in must
  359.    must never be changed by the application since the compressor maintains
  360.    information inside this buffer from call to call; the application
  361.    must provide more input only by increasing avail_in. next_in is always
  362.    reset by the library in this case.
  363.  
  364.       deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was
  365.    not enough memory, Z_STREAM_ERROR if a parameter is invalid (such as
  366.    an invalid method). msg is set to null if there is no error message.
  367.    deflateInit2 does not perform any compression: this will be done by
  368.    deflate().
  369. */
  370.                             
  371. extern int deflateCopy __P((z_stream *dest,
  372.                             z_stream *source));
  373. /*
  374.      Sets the destination stream as a complete copy of the source stream.  If
  375.    the source stream is using an application-supplied history buffer, a new
  376.    buffer is allocated for the destination stream.  The compressed output
  377.    buffer is always application-supplied. It's the responsibility of the
  378.    application to provide the correct values of next_out and avail_out for the
  379.    next call of deflate.
  380.  
  381.      This function is useful when several compression strategies will be
  382.    tried, for example when there are several ways of pre-processing the input
  383.    data with a filter. The streams that will be discarded should then be freed
  384.    by calling deflateEnd.  Note that deflateCopy duplicates the internal
  385.    compression state which can be quite large, so this strategy is slow and
  386.    can consume lots of memory.
  387.  
  388.       deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
  389.    enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
  390.    (such as zalloc being NULL). msg is left unchanged in both source and
  391.    destination.
  392. */
  393.  
  394. extern int deflateReset __P((z_stream *strm));
  395. /*
  396.      This function is equivalent to deflateEnd followed by deflateInit,
  397.    but does not free and reallocate all the internal compression state.
  398.    The stream will keep the same compression level and any other attributes
  399.    that may have been set by deflateInit2.
  400.  
  401.       deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
  402.    stream state was inconsistent (such as zalloc or state being NULL).
  403. */
  404.  
  405. extern int inflateInit2 __P((z_stream *strm,
  406.                              int  windowBits));
  407. /*   
  408.      This is another version of inflateInit with more compression options. The
  409.    fields next_out, zalloc and zfree must be initialized before by the caller.
  410.  
  411.      The windowBits parameter is the base two logarithm of the maximum window
  412.    size (the size of the history buffer).  It should be in the range 8..15 for
  413.    this version of the library (the value 16 will be allowed soon). The
  414.    default value is 15 if inflateInit is used instead. If a compressed stream
  415.    with a larger window size is given as input, inflate() will return with
  416.    the error code Z_DATA_ERROR instead of trying to allocate a larger window.
  417.  
  418.      If next_out is not null, the library will use this buffer for the history
  419.    buffer; the buffer must either be large enough to hold the entire output
  420.    data, or have at least 1<<windowBits bytes.  If next_out is null, the
  421.    library will allocate its own buffer (and leave next_out null). next_in
  422.    need not be provided here but must be provided by the application for the
  423.    next call of inflate().
  424.  
  425.      If the history buffer is provided by the application, next_out must
  426.    never be changed by the application since the decompressor maintains
  427.    history information inside this buffer from call to call; the application
  428.    can only reset next_out to the beginning of the history buffer when
  429.    avail_out is zero and all output has been consumed.
  430.  
  431.       inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was
  432.    not enough memory, Z_STREAM_ERROR if a parameter is invalid (such as
  433.    windowBits < 8). msg is set to null if there is no error message.
  434.    inflateInit2 does not perform any compression: this will be done by
  435.    inflate().
  436. */
  437.  
  438. extern int inflateSync __P((z_stream *strm));
  439. /* 
  440.     Skips invalid compressed data until the special marker (see deflate()
  441.   above) can be found, or until all available input is skipped. No output
  442.   is provided.
  443.  
  444.     inflateSync returns Z_OK if the special marker has been found, Z_BUF_ERROR
  445.   if no more input was provided, Z_DATA_ERROR if no marker has been found,
  446.   or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
  447.   case, the application may save the current current value of total_in which
  448.   indicates where valid compressed data was found. In the error case, the
  449.   application may repeatedly call inflateSync, providing more input each time,
  450.   until success or end of the input data.
  451. */
  452.  
  453. extern int inflateReset __P((z_stream *strm));
  454. /*
  455.      This function is equivalent to inflateEnd followed by inflateInit,
  456.    but does not free and reallocate all the internal decompression state.
  457.    The stream will keep attributes that may have been set by inflateInit2.
  458.  
  459.       inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
  460.    stream state was inconsistent (such as zalloc or state being NULL).
  461. */
  462.  
  463.  
  464.                         /* utility functions */
  465.  
  466. /*
  467.      The following utility functions are implemented on top of the
  468.    basic stream-oriented functions. To simplify the interface, some
  469.    default options are assumed (compression level, window size,
  470.    standard memory allocation functions). The source code of these
  471.    utility functions can easily be modified if you need special options.
  472. */
  473.  
  474. extern int compress __P((Byte *dest,   uLong *destLen,
  475.                          Byte *source, uLong sourceLen));
  476. /*
  477.      Compresses the source buffer into the destination buffer.  sourceLen is
  478.    the byte length of the source buffer. Upon entry, destLen is the total
  479.    size of the destination buffer, which must be at least 0.1% larger than
  480.    sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
  481.    compressed buffer.
  482.      This function can be used to compress a whole file at once if the
  483.    input file is mmap'ed.
  484.      compress returns Z_OK if success, Z_MEM_ERROR if there was not
  485.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  486.    buffer.
  487. */
  488.  
  489. extern int uncompress __P((Byte *dest,   uLong *destLen,
  490.                            Byte *source, uLong sourceLen));
  491. /*
  492.      Decompresses the source buffer into the destination buffer.  sourceLen is
  493.    the byte length of the source buffer. Upon entry, destLen is the total
  494.    size of the destination buffer, which must be large enough to hold the
  495.    entire uncompressed data. (The size of the uncompressed data must have
  496.    been saved previously by the compressor and transmitted to the decompressor
  497.    by some mechanism outside the scope of this compression library.)
  498.    Upon exit, destLen is the actual size of the compressed buffer.
  499.      This function can be used to decompress a whole file at once if the
  500.    input file is mmap'ed.
  501.  
  502.      uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
  503.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  504.    buffer, or Z_DATA_ERROR if the input data was corrupted.
  505. */
  506.  
  507.  
  508. typedef voidp gzFile;
  509.  
  510. extern gzFile gzopen  __P((char *path, char *mode));
  511. /*
  512.      Opens a gzip (.gz) file for reading or writing. The mode parameter
  513.    is as in fopen ("rb" or "wb"). gzopen can also be used to read a file
  514.    which is not in gzip format; in this case gzread will directly read from
  515.    the file without decompression.
  516.      gzopen returns NULL if the file could not be opened or if there was
  517.    insufficient memory to allocate the (de)compression state; errno
  518.    can be checked to distinguish the two cases (if errno is zero, the
  519.    zlib error is Z_MEM_ERROR).
  520. */
  521.  
  522. extern gzFile gzdopen  __P((int fd, char *mode));
  523. /*
  524.      gzdopen() associates a gzFile with the file descriptor fd.  File
  525.    descriptors are obtained from calls like open, dup, creat, or pipe.
  526.    The mode parameter is as in fopen ("rb" or "wb").
  527.      gzdopen returns NULL if there was insufficient memory to allocate
  528.    the (de)compression state.
  529. */
  530.  
  531. extern int    gzread  __P((gzFile file, voidp buf, unsigned len));
  532. /*
  533.      Reads the given number of uncompressed bytes from the compressed file.
  534.    If the input file was not in gzip format, gzread copies the given number
  535.    of bytes into the buffer.
  536.      gzread returns the number of uncompressed bytes actually read (0 for
  537.    end of file, -1 for error). */
  538.  
  539. extern int    gzwrite __P((gzFile file, voidp buf, unsigned len));
  540. /*
  541.      Writes the given number of uncompressed bytes into the compressed file.
  542.    gzwrite returns the number of uncompressed bytes actually written
  543.    (0 in case of error).
  544. */
  545.  
  546. extern int    gzflush __P((gzFile file, int flush));
  547. /*
  548.      Flushes all pending output into the compressed file. The parameter
  549.    flush is as in the deflate() function. The return value is the zlib
  550.    error number (see function gzerror below). gzflush returns Z_OK if
  551.    the flush parameter is Z_FINISH and all output could be flushed.
  552.      gzflush should be called only when strictly necessary because it can
  553.    degrade compression.
  554. */
  555.  
  556. extern int    gzclose __P((gzFile file));
  557. /*
  558.      Flushes all pending output if necessary, closes the compressed file
  559.    and deallocates all the (de)compression state. The return value is the zlib
  560.    error number (see function gzerror below).
  561. */
  562.  
  563. extern char*   gzerror __P((gzFile file, int *errnum));
  564. /*
  565.      Returns the error message for the last error which occurred on the
  566.    given compressed file. errnum is set to zlib error number. If an
  567.    error occurred in the file system and not in the compression library,
  568.    errnum is set to Z_ERRNO and the application may consult errno
  569.    to get the exact error code.
  570. */
  571.  
  572.                         /* checksum functions */
  573.  
  574. /*
  575.      These functions are not related to compression but are exported
  576.    anyway because they might be useful in applications using the
  577.    compression library.
  578. */
  579.  
  580. extern uLong adler32 __P((uLong adler, Byte *buf, uInt len));
  581. /*
  582.      Update a running Adler-32 checksum with the bytes buf[0..len-1] and
  583.    return the updated checksum. If buf is NULL, this function returns
  584.    the required initial value for the checksum.
  585.    An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
  586.    much faster. Usage example:
  587.  
  588.      uLong adler = adler32(0L, Z_NULL, 0);
  589.  
  590.      while (read_buffer(buffer, length) != EOF) {
  591.        adler = adler32(adler, buffer, length);
  592.      }
  593.      if (adler != original_adler) error();
  594. */
  595.  
  596. extern uLong crc32   __P((uLong crc, Byte *buf, uInt len));
  597. /*
  598.      Update a running crc with the bytes buf[0..len-1] and return the updated
  599.    crc. If buf is NULL, this function returns the required initial value
  600.    for the crc. Pre- and post-conditioning (one's complement) is performed
  601.    within this function so it shouldn't be done by the application.
  602.    Usage example:
  603.  
  604.      uLong crc = crc32(0L, Z_NULL, 0);
  605.  
  606.      while (read_buffer(buffer, length) != EOF) {
  607.        crc = crc32(crc, buffer, length);
  608.      }
  609.      if (crc != original_crc) error();
  610. */
  611.  
  612. #ifndef _Z_UTIL_H
  613.     struct internal_state {int dummy;}; /* hack for buggy compilers */
  614. #endif
  615.  
  616. #endif /* _ZLIB_H */
  617.